std::type_index::name
From Cppreference
< cpp | types | type index
| C++ Standard Library | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Utilities library | ||||||||||||||||||||||||||||
| Type support | ||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||
| std::type_index | ||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||
| const char *name() const;
| (C++11 feature) | |
Returns the name of the associated std::type_info object. Equivalent to calling type_info::name directly.
[edit] Parameters
(none)
[edit] Return value
the name of the associated type_info object.
[edit] Example
| This section is incomplete |